home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #ifndef PlotTestH
- #define PlotTestH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <ExtCtrls.hpp>
- //---------------------------------------------------------------------------
- class TFPlotTest : public TForm
- {
- __published: // Komponenten, die von der IDE verwaltet werden
- TPanel *PRight;
- TPanel *PBottom;
- TLabel *LtheTime;
- TLabel *Lsec;
- TLabel *LcTime;
- TButton *BExit;
- TPanel *PFRight;
- TPanel *PFTop;
- TPanel *PPlot;
- TPaintBox *PBPlot;
- TGroupBox *GBSpeedTest;
- TPanel *Panel1;
- TPanel *PILeft;
- TLabel *LFunction;
- TMemo *MFunction;
- TPanel *PFBottom;
- TPanel *Panel2;
- TButton *BRedraw;
- TMemo *MInfo;
- TLabel *LcTime0;
- TLabel *Lsec0;
- TLabel *LtheTime0;
- void __fastcall BExitClick(TObject *Sender);
- void __fastcall PBPlotPaint(TObject *Sender);
- void __fastcall FormShow(TObject *Sender);
-
-
-
- void __fastcall BRedrawClick(TObject *Sender);
-
-
- private: // Benutzerdeklarationen
- void PlotFunction(TPaintBox *thePBPlot);
-
- public: // Benutzerdeklarationen
- __fastcall TFPlotTest(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TFPlotTest *FPlotTest;
- //---------------------------------------------------------------------------
- #endif
-